home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 February
/
EnigmA AMIGA RUN 15 (1997)(G.R. Edizioni)(IT)[!][issue 1997-02][PLANET CD V].iso
/
enigma
/
earcd
/
emula
/
arosdv19.lha
/
AROS
/
graphics
/
readpixel.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-11-08
|
1KB
|
56 lines
/*
(C) 1995 AROS - The Amiga Replacement OS
$Id: readpixel.c,v 1.4 1996/11/08 11:27:56 aros Exp $ $Log
Desc: Graphics function ReadPixel()
Lang: english
*/
#include "graphics_intern.h"
#include <graphics/rastport.h>
/*****************************************************************************
NAME */
#include <graphics/rastport.h>
#include <clib/graphics_protos.h>
AROS_LH3(ULONG, ReadPixel,
/* SYNOPSIS */
AROS_LHA(struct RastPort *, rp, A1),
AROS_LHA(LONG , x, D0),
AROS_LHA(LONG , y, D1),
/* LOCATION */
struct GfxBase *, GfxBase, 53, Graphics)
/* FUNCTION
INPUTS
RESULT
NOTES
EXAMPLE
BUGS
SEE ALSO
INTERNALS
HISTORY
29-10-95 digulla automatically created from
graphics_lib.fd and clib/graphics_protos.h
*****************************************************************************/
{
AROS_LIBFUNC_INIT
AROS_LIBBASE_EXT_DECL(struct GfxBase *,GfxBase)
return driver_ReadPixel (rp, x, y, GfxBase);
AROS_LIBFUNC_EXIT
} /* ReadPixel */